home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / umich / telecomm / fnordadl / fn132src.zoo / cith / floor.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-09-02  |  405 b   |  22 lines

  1. /*
  2.  * floor.h -- structures and definitions for Fnordadel floors
  3.  *
  4.  * 91Apr29 AA    Extracted from ctdl.h and other places
  5.  */
  6.  
  7. #ifndef _FLOOR_H
  8. #define _FLOOR_H
  9.  
  10. /*
  11.  * floor stuff
  12.  */
  13. struct flTab {
  14.     LABEL flName;        /* floor name                */
  15.     char flGen;            /* floor generation #            */
  16.     BOOL flInUse;        /* is this floor in use?        */
  17. } ;
  18.  
  19. #define LOBBYFLOOR    0    /* generation number and* table index    */
  20.  
  21. #endif
  22.